projects
/
utf8proc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bbb1ba
)
upgrade minimum cmake version (#255)
author
dundargoc
<33953936+dundargoc@users.noreply.github.com>
Sun, 26 Nov 2023 02:00:49 +0000
(
03:00
+0100)
committer
GitHub
<noreply@github.com>
Sun, 26 Nov 2023 02:00:49 +0000
(21:00 -0500)
This will silence the following warning:
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
Compatibility with CMake < 3.5 will be removed from a future version of
CMake.
Update the VERSION argument <min> value or use a ...<max> suffix to tell
CMake that the project does not need compatibility with older versions.
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index f18615e828b554f417e10d4c198b9efa05d730fe..67bd9fa70a5bd8329fcda683000eabbe62d8e686 100644
(file)
--- a/
CMakeLists.txt
+++ b/
CMakeLists.txt
@@
-1,4
+1,4
@@
-cmake_minimum_required (VERSION 3.
0.0
)
+cmake_minimum_required (VERSION 3.
5
)
include (utils.cmake)